home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Windows / WindowManagerUser.cp < prev    next >
Text File  |  2000-06-23  |  463b  |  28 lines

  1. // WindowManagerUser.cp
  2.  
  3. #ifndef WindowManagerUser_h
  4. #include "WindowManagerUser.h"
  5. #endif
  6. #ifndef FontManagerUser_h
  7. #include "FontManagerUser.h"
  8. #endif
  9. #ifndef ProcessInfo_h
  10. #include "ProcessInfo.h"
  11. #endif
  12.  
  13. #include <Windows.h>
  14.  
  15. WindowManagerUser::WindowManagerUser()
  16.   {
  17.     static bool initialized = false;
  18.     
  19.     if ( !initialized )
  20.       {
  21.         Assert( !ProcessInfo::Application().OnlyBackground() );
  22.  
  23.         FontManagerUser();
  24.         InitWindows();
  25.         initialized = true;
  26.       }
  27.   }
  28.